/* ============================================================
   ECO Meeting.css — ECO Meeting CLOUD AI議事録機能 LP
   デザイン: Green Impact
   カラー: グリーン（プライマリ） ＋ アンバー（メインアクセント）
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── CSS変数（カラーパレット） ── */
:root {
  /* グリーン（プライマリ） */
  --g1: #166B45;
  --g2: #20A86D;
  --g3: #2CC57E;
  --g-light: #E6F7EF;
  --g-pale:  #F0FAF5;

  /* アンバー（メインアクセント） */
  --amber:   #F5A623;
  --amber-d: #D4880A;
  --amber-l: #FEF3D8;

  /* オレンジ（サブアクセント） */
  --orange:  #FF6B35;

  /* テキスト・ベース */
  --white: #FFFFFF;
  --ink:   #0E2318;
  --ink2:  #1E3D2C;
  --muted: #3D5948;
  --gray:  #F3F7F5;
}

/* ── ベース ── */
body #cnt {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}


/* ============================================================
   HEADER
   ============================================================ */
/* 
header {
  background: var(--white);
  border-bottom: 1px solid rgba(32,168,109,0.2);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 16px rgba(32,168,109,0.08);
}
.header-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; height: 74px;
}
.logo { font-size: 22px; font-weight: 900; color: var(--g1); letter-spacing: -0.01em; }
.logo span { color: var(--g2); }
nav { display: flex; gap: 28px; }
nav a { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.2s; }
nav a:hover { color: var(--g2); }
.header-btns { display: flex; gap: 8px; } */
.btn-line {
  padding: 9px 18px; border: 1.5px solid var(--g2); color: var(--g2);
  font-size: 14px; font-weight: 700; background: transparent; text-decoration: none;
  letter-spacing: 0.05em; transition: all 0.2s; white-space: nowrap;
}
.btn-line:hover { background: var(--g-light); }
.btn-solid {
  padding: 9px 20px; background: var(--g2); color: var(--white);
  font-size: 14px; font-weight: 900; text-decoration: none; letter-spacing: 0.05em;
  transition: background 0.2s; white-space: nowrap;
}
.btn-solid:hover { background: var(--g1); }


/* ============================================================
   HERO (v2: Full Center)
   ============================================================ */
.hero {
  background: linear-gradient(160deg, var(--g1) 0%, #1A8A56 40%, var(--g2) 70%, var(--g3) 100%);
  padding: 88px 0 0;
  position: relative; overflow: hidden;
}

/* 斜めカット（下部） */
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 30%, 100% 100%);
  z-index: 2;
}

/* ドットグリッド背景 */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* 巨大な装飾ウォーターマーク "AI 議事録" */
.hero-watermark {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  font-size: 480px; font-weight: 900; color: rgba(255,255,255,0.04);
  line-height: 0.9; letter-spacing: -0.05em; pointer-events: none; white-space: pre;
  user-select: none; text-align: center;
}

/* センターコンテンツ */
.hero-inner {
  max-width: 860px; margin: 0 auto; padding: 0 32px;
  text-align: center; position: relative; z-index: 1;
}

/* アンバーアクセントバッジ */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber); border: 1px solid var(--amber-d);
  padding: 7px 18px; margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(245,166,35,0.45);
}
.badge-pulse { display: none; }
.badge-text { font-size: 15px; font-weight: 900; color: var(--white); letter-spacing: 0.14em; }

.hero-eyecatch {
  font-size: 13px; color: rgba(255,255,255,0.85); letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 20px;
}

/* 特大見出し */
.hero h1 {
  font-size: clamp(38px, 5.5vw, 72px); font-weight: 900;
  color: var(--white); line-height: 1.2; margin-bottom: 28px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.2);
  letter-spacing: -0.02em;
}

/* "AI × ペーパーレス" をアンバー文字でハイライト（ボックスなし） */
.hero h1 .h1-accent {
  color: var(--amber);
  font-style: normal;
  text-shadow: 0 2px 16px rgba(245,166,35,0.5);
}

/* h1サブキャッチ */
.hero h1 .h1-sub {
  display: block;
  font-size: 0.58em; font-weight: 900;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em; margin-bottom: 10px;
  text-shadow: none;
}

.hero-lead {
  font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.9;
  max-width: 640px; margin: 0 auto 32px; text-align: left;
}

/* タグ（シンプルテキスト・チェックマーク付き） */
.hero-tags {
  display: flex; flex-wrap: wrap; gap: 4px 24px;
  margin-bottom: 36px; justify-content: center;
}
.hero-tag {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
  background: none; border: none; padding: 0;
}
.hero-tag::before {
  content: '✓';
  color: var(--amber);
  font-weight: 700;
  margin-right: 5px;
  font-size: 11px;
}
.hero-tag.tag-accent {
  color: rgba(255,255,255,0.75);
  background: none; border: none;
}

/* CTAボタン群 */
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; justify-content: center; }

/* デフォルト：全ボタン共通（透明背景・白枠） */
.btn-white,
.btn-trans {
  padding: 17px 40px;
  background: transparent; color: var(--white);
  font-size: 15px; font-weight: 700; text-decoration: none; letter-spacing: 0.06em;
  border: 1.5px solid rgba(255,255,255,0.45);
  transition: all 0.25s;
}

/* ホバー：全ボタン共通（白背景・グリーン文字・アンバー下線） */
.btn-white:hover,
.btn-trans:hover {
  background: var(--white);
  color: var(--g1);
  border-color: var(--white);
  border-bottom: 3px solid var(--amber);
  border-top: 1.5px solid var(--white);
  border-left: 1.5px solid var(--white);
  border-right: 1.5px solid var(--white);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  transform: translateY(-2px);
  font-weight: 900;
}

.hero-note { font-size: 14px; color: rgba(255,255,255,0.80); margin-bottom: 52px; }
.hero-note a { color: rgba(255,255,255,0.95); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.5); }

/* ── インラインメトリクス（白ボックス・アンバー囲み罫線・アンバー文字） ── */
.hero-metrics-inline {
  display: flex; justify-content: center; gap: 12px;
  max-width: 680px; margin: 0 auto 56px;
  background: transparent; border: none;
}
.hmi-item {
  flex: 1; padding: 22px 16px; text-align: center;
  background: var(--white);
  border: 2px solid var(--amber);
  position: relative;
}
.hmi-item:last-child { border-right: 2px solid var(--amber); }
.hmi-item.hmi-accent { background: var(--white); }
.hmi-num {
  font-size: 42px; font-weight: 900; line-height: 1; display: block;
  color: var(--amber);
}
.hmi-item.hmi-accent .hmi-num { color: var(--amber); }
.hmi-unit { font-size: 18px; }
.hmi-label { font-size: 14px; color: var(--ink); margin-top: 6px; letter-spacing: 0.03em; }
.hmi-sub   { font-size: 13px; color: var(--muted); margin-top: 3px; }

/* ── ワイドモックアップエリア（画像差し替え対応） ── */
.hero-mockup-wrap {
  max-width: 1000px; margin: 0 auto;
  position: relative; z-index: 3; padding: 0 24px;
}

/* 画像がある場合 */
.hero-mockup-img {
  width: 100%; display: block;
  box-shadow: 0 8px 48px rgba(0,0,0,0.35);
}

/* 画像がない場合のプレースホルダー */
.hero-mockup-placeholder {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 2px dashed rgba(255,255,255,0.3);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; padding: 48px 32px;
  color: rgba(255,255,255,0.5); font-size: 14px; text-align: center;
  box-sizing: border-box;
}
.hero-mockup-placeholder-icon { font-size: 36px; opacity: 0.4; }
.hero-mockup-placeholder-text { font-size: 13px; letter-spacing: 0.05em; }
.hero-mockup-placeholder-note {
  font-size: 12px; color: rgba(255,255,255,0.3);
  font-family: monospace; background: rgba(0,0,0,0.2);
  padding: 6px 14px; margin-top: 4px;
}

/* 旧メトリクス行（非表示：インライン版に移行済み） */
.metrics-row   { display: none; }
.metrics-inner { display: none; }
.metric        { display: none; }
.metric-accent { display: none; }


/* ============================================================
   共通セクションユーティリティ
   ============================================================ */
.section   { padding: 88px 0; }
#cnt .container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.sec-head  { margin-bottom: 52px; }

/* セクションキッカー（アンバー） */
.sec-kicker {
  font-size: 12px; font-weight: 900; letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 14px; display: inline-flex; align-items: center; gap: 10px;
  color: var(--amber-d);
}
.sec-kicker::before {
  content: ''; display: inline-block; width: 24px; height: 3px; background: var(--amber);
}

.sec-title { font-size: clamp(24px, 2.8vw, 36px); font-weight: 900; color: var(--ink); margin-bottom: 8px; }
.sec-sub   { font-size: 16px; color: var(--muted); }


/* ============================================================
   PROBLEM
   ============================================================ */
.problem-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* 奇数カード：グリーントップ / 偶数カード：アンバートップ */
.p-card {
  background: var(--white); border: 1px solid var(--g-light);
  border-top: 3px solid var(--g2); padding: 28px 24px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.p-card.p-accent { border-top-color: var(--amber); }
.p-card:hover { box-shadow: 0 8px 32px rgba(32,168,109,0.12); transform: translateY(-4px); }
.p-card.p-accent:hover { box-shadow: 0 8px 32px rgba(245,166,35,0.14); }

.p-num   { font-size: 34px; font-weight: 900; color: #A8D9C0; line-height: 1; margin-bottom: 12px; }
.p-card.p-accent .p-num { color: #F5C97A; }
.p-title { font-size: 16px; font-weight: 700; color: var(--ink2); margin-bottom: 10px; line-height: 1.5; }
.p-desc  { font-size: 15px; color: var(--muted); line-height: 1.8; }


/* ============================================================
   SOLUTION
   ============================================================ */
.sol-bg   { background: var(--g-pale); }
.sol-lead { font-size: 16px; color: var(--muted); line-height: 1.9; max-width: 680px; margin-bottom: 52px; }

/* 3ステップ */
.steps-wrap {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  margin-bottom: 40px; position: relative;
}
.steps-wrap::before {
  content: ''; position: absolute; top: 44px;
  left: calc(100%/6); right: calc(100%/6);
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--g2), var(--g3));
  z-index: 0;
}
.step-card {
  background: var(--white); border: 1px solid rgba(32,168,109,0.15);
  padding: 32px 24px; text-align: left; position: relative; z-index: 1;
  box-shadow: 0 2px 16px rgba(32,168,109,0.06);
}
.step-num {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, var(--g2), var(--g1));
  color: var(--white); font-size: 22px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 0 20px; box-shadow: 0 4px 16px rgba(32,168,109,0.3);
}
.step-num svg { display: block; }
/* ステップ1のみアンバー：起点を強調 */
.step-card:first-child .step-num {
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 4px 20px rgba(245,166,35,0.4);
}
.step-title { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.5; }
.step-desc  { font-size: 15px; color: var(--muted); line-height: 1.8; }

/* SOLUTIONビジュアルバー（＋ ＋ ＝ フロー） */
.sol-visual {
  background: linear-gradient(135deg, var(--g1), var(--g2));
  padding: 36px; display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap; min-height: 140px;
  position: relative; overflow: hidden;
}
.sol-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 24px 24px;
}
.vis-node {
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  padding: 14px 20px; text-align: center; backdrop-filter: blur(8px);
  position: relative; z-index: 1;
}
.vis-node-label { font-size: 13px; color: rgba(255,255,255,0.85); letter-spacing: 0.12em; text-transform: uppercase; }
.vis-node-val   { font-size: 16px; font-weight: 700; color: #fff; margin-top: 6px; }
.vis-arrow      { color: rgba(255,255,255,0.6); font-size: 22px; position: relative; z-index: 1; }

/* Resultボックス（アンバー） */
.vis-result {
  background: var(--amber); padding: 14px 28px; text-align: center;
  position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(245,166,35,0.4);
}
.vis-result-label { font-size: 13px; color: rgba(255,255,255,0.90); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; }
.vis-result-val   { font-size: 17px; font-weight: 900; color: var(--white); margin-top: 6px; }


/* ============================================================
   STRENGTHS
   ============================================================ */
.str-section {
  background: var(--white);
  position: relative; overflow: hidden;
}
.str-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.str-card {
  background: var(--white);
  border: 1px solid var(--g-light);
  border-top: 3px solid var(--g2);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.str-card:hover { box-shadow: 0 8px 32px rgba(32,168,109,0.1); transform: translateY(-4px); }

/* 画像エリア */
.str-img-area {
  width: 100%; height: 200px;
  background: var(--g-pale);
  border-bottom: 1px solid var(--g-light);
  overflow: hidden; position: relative;
  display: block;
}
.str-img-area img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.str-img-ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; gap: 10px;
  color: var(--muted); text-align: center;
}
.str-img-ph-icon { font-size: 32px; opacity: 0.35; }
.str-img-ph-text { font-size: 12px; font-weight: 500; letter-spacing: 0.03em; }

/* カード本文エリア */
.str-card-body { padding: 28px 28px 28px; }

.str-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.str-dot {
  width: 8px; height: 8px; background: var(--g2); flex-shrink: 0;
}
.str-badge-label {
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--g2);
}
.str-title {
  font-size: 18px; font-weight: 800; color: var(--ink);
  margin-bottom: 12px; line-height: 1.45;
}
.str-desc {
  font-size: 15px; line-height: 1.9; color: var(--muted);
  margin-bottom: 20px;
}
.str-highlight {
  background: var(--g-pale);
  border-left: 3px solid var(--g3);
  padding: 10px 14px;
}
.str-hl-text {
  font-size: 13px; font-weight: 700; color: var(--g1); line-height: 1.6;
}


/* ============================================================
   中間CTA
   ============================================================ */
.cta-mid {
  background: var(--g2);
  padding: 72px 0;
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-mid-inner { position: relative; z-index: 1; }
.cta-mid-title {
  font-size: clamp(20px, 2.4vw, 28px); font-weight: 900;
  color: var(--white); margin-bottom: 12px; line-height: 1.4;
}
.cta-mid-sub {
  font-size: 15px; color: rgba(255,255,255,0.8);
  margin-bottom: 36px; line-height: 1.8;
}
.cta-mid-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-cta-w,
.btn-cta-ol {
  padding: 17px 40px;
  background: transparent; color: var(--white);
  font-size: 15px; font-weight: 700; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  transition: all 0.25s;
}
.btn-cta-w:hover,
.btn-cta-ol:hover {
  background: var(--white);
  color: var(--g1);
  border-color: var(--white);
  border-bottom: 3px solid var(--amber);
  border-top: 1.5px solid var(--white);
  border-left: 1.5px solid var(--white);
  border-right: 1.5px solid var(--white);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  transform: translateY(-2px);
  font-weight: 900;
}


/* ============================================================
   BENEFITS
   ============================================================ */
.ben-section { background: var(--g-pale); }
.ben-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.ben-card {
  background: var(--white);
  border: 1px solid var(--g-light);
  border-top: 4px solid var(--g2);
  padding: 36px 32px 48px;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.ben-card-accent { border-top-color: var(--amber); }
.ben-card:hover { box-shadow: 0 12px 40px rgba(32,168,109,0.12); transform: translateY(-6px); }
/* ウォーターマークアイコン */
.ben-bg-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -40%);
  opacity: 0.07;
  color: var(--g2);
  pointer-events: none;
  z-index: 0;
}
.ben-card-accent .ben-bg-icon { color: var(--amber-d); }
/* テキストコンテンツ（アイコンの上） */
.ben-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 20px;
}
.ben-label {
  display: inline-block;
  font-size: 12px; font-weight: 900;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white);
  background: var(--g1);
  padding: 6px 16px;
  margin-bottom: 20px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  padding-right: 24px;
}
.ben-label-amber {
  background: var(--amber-d);
  color: var(--white);
}
.ben-title {
  font-size: 20px; font-weight: 900; color: var(--ink);
  margin-bottom: 16px; line-height: 1.4;
  letter-spacing: -0.01em;
  text-align: center;
}
.ben-desc {
  font-size: 15px; line-height: 1.9; color: var(--muted);
  text-align: left;
}


/* ============================================================
   FOR WHOM
   ============================================================ */
.fw-section { background: var(--white); }

/* 2段レイアウト */
.fw-row { display: grid; gap: 20px; margin-bottom: 20px; }
.fw-row:last-child { margin-bottom: 0; }
.fw-row-top { grid-template-columns: 1fr 1fr; }
.fw-row-bottom { grid-template-columns: 1fr 1fr 1fr; }

.fw-card {
  background: var(--g-pale);
  border: 1px solid rgba(32,168,109,0.12);
  border-top: 3px solid var(--g2);
  padding: 28px 24px 32px;
  text-align: center;
  transition: all 0.2s;
  position: relative;
}
/* 1段目カード：少し大きく */
.fw-card-lg { padding: 32px 32px 36px; }
.fw-card-accent {
  background: var(--amber-l);
  border-color: rgba(245,166,35,0.2);
  border-top-color: var(--amber-d);
}
.fw-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }

/* タグ（1段目のみ） */
.fw-tag-row { margin-bottom: 20px; text-align: center; }
.fw-tag {
  display: inline-block; font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); background: var(--g1);
  padding: 5px 14px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  padding-right: 20px;
}
.fw-tag-amber { background: var(--amber-d); }

.fw-icon {
  width: 56px; height: 56px;
  background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; color: var(--g2);
  box-shadow: 0 2px 8px rgba(32,168,109,0.12);
}
.fw-card-lg .fw-icon { width: 64px; height: 64px; }
.fw-card-accent .fw-icon { color: var(--amber-d); }
.fw-role {
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.08em; color: var(--g2); margin-bottom: 10px;
}
.fw-card-lg .fw-role { font-size: 13px; }
.fw-card-accent .fw-role { color: var(--amber-d); }
.fw-title {
  font-size: 15px; font-weight: 700; color: var(--ink);
  margin-bottom: 10px; line-height: 1.5;
}
.fw-card-lg .fw-title { font-size: 17px; margin-bottom: 12px; }
.fw-desc { font-size: 14px; line-height: 1.8; color: var(--muted); text-align: left; }
.fw-card-lg .fw-desc { font-size: 15px; text-align: left; }


/* ============================================================
   PRICING
   ============================================================ */
.price-section { background: var(--g-pale); }
.price-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 24px; max-width: 720px; margin: 0 auto 32px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--g-light);
  border-top: 3px solid var(--g2);
  padding: 44px 40px;
}
.price-card-featured {
  background: var(--g1);
  border-color: var(--g1);
  border-top-color: var(--amber);
}
.price-plan {
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--g1); margin-bottom: 16px;
}
.price-card-featured .price-plan { color: var(--amber); }
.price-amount {
  font-size: 15px; color: var(--muted); margin-bottom: 4px; line-height: 1.2;
}
.price-card-featured .price-amount { color: rgba(255,255,255,0.65); }
.price-num {
  font-size: 48px; font-weight: 900; color: var(--ink); letter-spacing: -0.02em;
}
.price-card-featured .price-num { color: var(--white); }
.price-unit { font-size: 14px; }
.price-card-featured .price-unit { color: rgba(255,255,255,0.65); }
.price-hours {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  color: var(--g1); background: var(--g-pale);
  border: 1px solid var(--g-light);
  padding: 4px 12px; margin: 10px 0 18px;
  letter-spacing: 0.05em;
}
.price-card-featured .price-hours { color: var(--amber-d); background: var(--amber-l); border-color: rgba(245,166,35,0.3); }
.price-divider { height: 1px; background: var(--g-light); margin: 18px 0; }
.price-card-featured .price-divider { background: rgba(255,255,255,0.18); }
.price-desc { font-size: 15px; line-height: 1.8; color: var(--muted); }
.price-card-featured .price-desc { color: rgba(255,255,255,0.90); }

.price-note {
  text-align: center; font-size: 13px;
  color: var(--muted); line-height: 1.9;
  margin-bottom: 28px;
}
.price-cta { text-align: center; }


/* ============================================================
   ABOUT ECO MEETING
   ============================================================ */
.about-section { background: var(--white); }
.about-logo {
  margin-bottom: 24px;
}
.about-logo svg {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
}
.about-inner {
  display: grid; grid-template-columns: 1fr 340px; gap: 72px; align-items: center;
}
.about-desc {
  font-size: 15px; line-height: 1.9; color: var(--muted);
  margin: 20px 0 28px;
}
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.about-tag {
  font-size: 13px; font-weight: 600; color: var(--g1);
  padding: 5px 14px;
  border: 1.5px solid var(--g-light);
  background: var(--g-pale);
}
.about-link {
  font-size: 14px; font-weight: 700; color: var(--g2);
  text-decoration: none; border-bottom: 1.5px solid var(--g3);
  padding-bottom: 2px; transition: color 0.2s;
}
.about-link:hover { color: var(--g1); }
.about-badge-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.about-badge-item {
  background: var(--g-pale); border: 1px solid var(--g-light);
  padding: 24px 16px; text-align: center;
  border-top: 3px solid var(--g2);
}
.ab-num {
  font-size: 28px; font-weight: 900; color: var(--g1);
  line-height: 1; margin-bottom: 8px;
}
.ab-label { font-size: 13px; font-weight: 600; color: var(--muted); }


/* ============================================================
   OUTPUT
   ============================================================ */
.output-section {
  background-color: var(--g-pale);
  background-image:
    linear-gradient(rgba(32, 168, 109, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 168, 109, 0.10) 1px, transparent 1px);
  background-size: 40px 40px;
}
/* OUTPUT 2カラムレイアウト */
.output-2col {
  display: flex;
  align-items: center;
  gap: 72px;
}
.output-left {
  flex: 1;
  min-width: 0;
}
.output-left .sec-title {
  margin-bottom: 16px;
}
.output-left .sec-sub {
  margin-bottom: 36px;
}
.output-right {
  flex: 0 0 380px;
  width: 380px;
}
.output-tags {
  display: flex; flex-direction: column; gap: 12px; flex-wrap: wrap;
  margin-bottom: 0;
}
.output-tag {
  font-size: 14px; font-weight: 700; color: var(--g1);
  background: var(--white);
  padding: 10px 20px; border: 1.5px solid var(--g3);
  display: inline-block;
}
.output-mockup-img {
  width: 100%; display: block;
  box-shadow: 0 12px 48px rgba(0,0,0,0.14);
}
.output-mockup-placeholder {
  width: 100%;
  min-height: 480px;
  background: var(--white);
  border: 2px dashed var(--g-light);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; padding: 64px 32px;
  color: var(--muted); text-align: center;
}
.omp-icon { font-size: 40px; opacity: 0.35; }
.omp-text { font-size: 14px; letter-spacing: 0.05em; }
.omp-note {
  font-size: 12px; color: var(--muted);
  font-family: monospace; background: var(--g-pale); padding: 6px 14px;
}


/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--gray); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white); margin-bottom: 12px;
  border: 1px solid rgba(0,0,0,0.06);
}
.faq-q {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 28px;
}
.faq-q-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--g2); color: var(--white);
  font-size: 16px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.faq-q-text { font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.5; padding-top: 4px; }
.faq-a {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 0 28px 22px;
  border-top: 1px solid var(--g-light);
  margin-top: -1px; padding-top: 18px;
}
.faq-a-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--amber-l); color: var(--amber-d);
  font-size: 16px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.faq-a-text { font-size: 15px; line-height: 1.9; color: var(--muted); padding-top: 4px; }
.faq-a-text a { color: var(--g2); text-decoration: none; border-bottom: 1px solid var(--g-light); }
.faq-a-text a:hover { color: var(--g1); }


/* ============================================================
   最終CTA
   ============================================================ */
.final-cta {
  background: linear-gradient(135deg, var(--g1) 0%, var(--g2) 55%, var(--g3) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 20px;
}
.final-cta-title {
  font-size: clamp(22px, 2.8vw, 36px); font-weight: 900;
  color: var(--white); line-height: 1.4; margin-bottom: 18px;
}
.final-cta-sub {
  font-size: 16px; color: rgba(255,255,255,0.88);
  margin-bottom: 40px; line-height: 1.8;
}
.final-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }


/* ============================================================
   FOOTER
   ============================================================ */
/*
footer {
  background: var(--g-pale);
  border-top: 2px solid var(--g-light);
  padding: 56px 0 28px;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
}
.footer-top {
  display: flex; gap: 64px; margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--g-light);
}
.footer-logo {
  font-size: 22px; font-weight: 900; color: var(--g1);
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.footer-logo span { color: var(--muted); font-weight: 400; }
.footer-tagline {
  font-size: 13px; color: var(--muted); margin-bottom: 4px;
}
.footer-company {
  font-size: 13px; font-weight: 600; color: var(--ink);
}
.footer-nav {
  display: flex; gap: 48px; margin-left: auto;
}
.footer-nav-col {
  display: flex; flex-direction: column; gap: 10px;
}
.footer-nav-head {
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.footer-nav-col a {
  font-size: 14px; color: var(--ink);
  text-decoration: none; transition: color 0.2s;
}
.footer-nav-col a:hover { color: var(--g2); }
.footer-bottom {
  display: flex; flex-direction: column; gap: 10px; align-items: flex-start;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 13px; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}
.footer-legal a:hover { color: var(--g1); }
.footer-note {
  font-size: 12px; color: var(--muted); line-height: 1.7;
}
.footer-copy {
  font-size: 12px; color: var(--muted); margin-top: 4px;
}
*/


/* ============================================================
   デバッグラベル（開発用・本番時は削除）
   ============================================================ */
.design-label {
  position: fixed; bottom: 20px; right: 20px; background: var(--g1);
  color: var(--white); padding: 8px 16px; font-size: 13px; font-weight: 700;
  border-left: 3px solid var(--amber); z-index: 999;
}


/* ============================================================
   レスポンシブ対応
   ============================================================ */

/* ── タブレット（〜768px） ── */
@media (max-width: 768px) {

  /* HEADER */
  .header-inner { padding: 0 20px; height: 64px; }
  /* nav { display: none; } */
  .header-btns { gap: 6px; }
  .btn-line, .btn-solid { padding: 7px 12px; font-size: 12px; }

  /* HERO（A案・共通） */
  .hero { padding: 64px 0 0; }
  .hero-inner { padding: 0 20px; }
  .hero-badge { padding: 6px 14px; margin-bottom: 20px; }
  .badge-text { font-size: 13px; }
  .hero-lead { font-size: 15px; margin-bottom: 24px; }
  .hero-btns { gap: 8px; }
  .btn-white, .btn-trans { padding: 14px 24px; font-size: 14px; }
  .hero-metrics-inline {
    gap: 8px; max-width: 100%; padding: 0 20px; margin-bottom: 40px;
  }
  .hmi-item { padding: 16px 10px; }
  .hmi-num { font-size: 30px; }
  .hmi-unit { font-size: 14px; }
  .hmi-label { font-size: 12px; }
  .hmi-sub { font-size: 11px; }

  /* HERO（B案）768px: インラインstyleに移管済み */

  /* 共通セクション */
  .section { padding: 64px 0; }
  #cnt .container { padding: 0 20px; }
  .sec-head { margin-bottom: 36px; }
  .sec-title { font-size: clamp(22px, 4.5vw, 30px); }
  .sec-sub { font-size: 15px; }

  /* PROBLEM: 3列→2列 */
  .problem-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* SOLUTION */
  .sol-lead { font-size: 15px; margin-bottom: 36px; }
  .steps-wrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .steps-wrap::before { display: none; }
  .step-card { padding: 24px 20px; }
  .sol-visual { gap: 12px; padding: 24px 20px; }
  .vis-node { padding: 10px 14px; }
  .vis-node-label { font-size: 11px; }
  .vis-node-val { font-size: 14px; }

  /* OUTPUT */
  .output-2col {
    flex-direction: column;
    gap: 36px;
  }
  .output-right {
    flex: none;
    width: 100%;
  }
  .output-mockup-placeholder { min-height: 280px; }

  /* STRENGTHS: 3列→1列 */
  .str-grid { grid-template-columns: 1fr; }
  .str-img-area { height: 160px; }

  /* 中間CTA */
  .cta-mid { padding: 52px 0; }
  .cta-mid-btns { gap: 8px; }
  .btn-cta-w, .btn-cta-ol { padding: 14px 24px; font-size: 14px; }

  /* BENEFITS: 3列→1列 */
  .ben-grid { grid-template-columns: 1fr; }
  .ben-card { min-height: auto; padding: 32px 24px 36px; }

  /* FOR WHOM: 2+3列→1列 */
  .fw-row-top { grid-template-columns: 1fr; }
  .fw-row-bottom { grid-template-columns: 1fr; }

  /* PRICING: 2列→1列 */
  .price-grid { grid-template-columns: 1fr; max-width: 480px; }
  .price-card { padding: 36px 28px; }

  /* ABOUT */
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-badge-wrap { grid-template-columns: 1fr 1fr; }

  /* FAQ */
  .faq-q { padding: 18px 20px; gap: 12px; }
  .faq-a { padding: 0 20px 18px; }
  .faq-q-text { font-size: 15px; }

  /* 最終CTA */
  .final-cta { padding: 64px 0; }
  .final-cta-btns { gap: 8px; }

  /* FOOTER */
  /* .footer-top {
    flex-direction: column;
    gap: 32px;
  }
  .footer-nav { gap: 32px; } */
}


/* ── モバイル（〜480px） ── */
@media (max-width: 480px) {

  /* HEADER */
  .header-inner { padding: 0 16px; height: 60px; }
  .logo { font-size: 19px; }
  .header-btns .btn-line:not(:last-child) { display: none; }
  .btn-line, .btn-solid { padding: 7px 14px; font-size: 12px; }

  /* HERO（A案・共通） */
  .hero { padding: 52px 0 0; }
  .hero-inner { padding: 0 16px; }
  .hero-badge { padding: 5px 12px; }
  .badge-text { font-size: 12px; letter-spacing: 0.08em; }
  .hero h1 { font-size: clamp(30px, 8.5vw, 44px); margin-bottom: 20px; }
  .hero-lead { font-size: 14px; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 8px; }
  .btn-white, .btn-trans { padding: 14px 20px; text-align: center; }
  .hero-note { font-size: 13px; }
  .hero-metrics-inline {
    flex-direction: column;
    padding: 0 16px;
    gap: 8px;
    max-width: 320px;
  }
  .hmi-item { padding: 14px 16px; display: flex; align-items: center; gap: 12px; text-align: left; }
  .hmi-num { font-size: 28px; flex-shrink: 0; }

  /* HERO（B案）480px: インラインstyleに移管済み */

  /* 共通セクション */
  .section { padding: 52px 0; }
  #cnt .container { padding: 0 16px; }
  .sec-title { font-size: clamp(20px, 6vw, 28px); }

  /* PROBLEM: 2列→1列 */
  .problem-grid { grid-template-columns: 1fr; gap: 12px; }

  /* SOLUTION */
  .sol-visual { flex-direction: column; align-items: stretch; text-align: center; }
  .vis-arrow { transform: rotate(90deg); align-self: center; }

  /* OUTPUT */
  .output-right { flex: none; width: 100%; }

  /* FOR WHOM */
  .fw-card-lg { padding: 24px 20px 28px; }

  /* PRICING */
  .price-card { padding: 28px 20px; }
  .price-num { font-size: 38px; }

  /* ABOUT */
  .about-badge-wrap { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* FAQ */
  .faq-q, .faq-a { padding: 16px; gap: 10px; }
  .faq-q-text { font-size: 14px; }
  .faq-a-text { font-size: 14px; }

  /* 最終CTA */
  .final-cta { padding: 52px 0; }
  .final-cta-btns { flex-direction: column; align-items: stretch; padding: 0 20px; }
  .btn-cta-w, .btn-cta-ol { text-align: center; }

  /* FOOTER */
  /* .footer-nav {
    flex-direction: column;
    gap: 24px;
  }
  .footer-legal { flex-direction: column; gap: 12px; }
  .footer-inner { padding: 0 16px; } */
}
